home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / f2c3.2src.lha / f2c-for-SASC651 / src / niceprintf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-29  |  412 b   |  17 lines

  1. /* niceprintf.h -- contains constants and macros from the output filter
  2.    for the generated C code.  We use macros for increased speed, less
  3.    function overhead.  */
  4.  
  5. #define MAX_OUTPUT_SIZE 6000    /* Number of chars on one output line PLUS
  6.                    the length of the longest string
  7.                    printed using   nice_printf   */
  8.  
  9.  
  10.  
  11. #define next_tab(fp) (indent += tab_size)
  12.  
  13. #define prev_tab(fp) (indent -= tab_size)
  14.  
  15.  
  16.  
  17.